home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / www_talk.930 / 000591_jim@wilbur.njit.edu _Wed Jan 20 18:46:20 1993.msg < prev    next >
Internet Message Format  |  1994-01-24  |  2KB

  1. Return-Path: <jim@wilbur.njit.edu>
  2. Received: from dxmint.cern.ch by  nxoc01.cern.ch  (NeXT-1.0 (From Sendmail 5.52)/NeXT-2.0)
  3.     id AA10607; Wed, 20 Jan 93 18:46:20 MET
  4. Received: by dxmint.cern.ch (5.65/DEC-Ultrix/4.3)
  5.     id AA00729; Wed, 20 Jan 1993 19:01:44 +0100
  6. Received: by njitgw.njit.edu (5.57/Ultrix3.0-C)
  7.     id AA14292; Wed, 20 Jan 93 13:01:41 -0500
  8. Message-Id: <9301201801.AA14292@njitgw.njit.edu>
  9. Received: by wilbur.njit.edu; Wed, 20 Jan 93 12:59:38 est
  10. Date: Wed, 20 Jan 93 12:59:38 est
  11. From: jim@wilbur.njit.edu (Jim Whitescarver)
  12. To: connolly@pixel.convex.com
  13. Subject: Re: INPUT tag (was: Searching)
  14. Cc: TONYJ@scs.slac.stanford.edu, al@eies2.njit.edu, cis!bieber@dxmint.cern.ch,
  15.         murray@eies2.njit.edu, reddy@wilbur.njit.edu, roxanne@eies2.njit.edu,
  16.         www-talk@nxoc01.cern.ch
  17.  
  18. Thanks Dan.  I'll need to study your example a bit.  Specifically what I
  19. had in mind was close to that, I think.
  20. -----------------example-
  21. How old are you? <input name="age" type="number"
  22. width="5" help="http:s/help/inputs#age">
  23. <P>
  24. Do you have any of the following symptoms?
  25. <UL>
  26. <li>headach? <input name="headache" type="boolean" width="3" default="No">
  27. <li>blackouts? <input name="blackouts" type="boolean" width="3" default="No">
  28. </UL>
  29. <P>
  30. <a href="http:/eies2.njit.edu:1234/medsearch?&age;+&headache;+&blackouts;">
  31. Click here to search</a>
  32. ------------------end example-
  33. I think you did something similar...  Note that the search could would be
  34. the same as the anchor in the example above.  In this case the search engine
  35. would have to know about the keyword order meaning, but it would work with
  36. http1 systems without "too" much work in existing browsers.
  37.  
  38. The only connection between <input> and <var></var> is that the name attribute
  39. in each would define a value in the browsers context.  In the first iteration
  40. we won't support the name attribute in either, we will simply use the whole
  41. list of input values in search and do.  Later it will be important to mantain
  42. the users namespace.
  43.  
  44. jim